home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / What's New? / Development Kits / Mac OS / USB DDK 1.4.6f4 / Examples / USBSampleStorageDriver / USB_Version.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-25  |  842 b   |  28 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        USB_Version.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 2000 by Apple Computer, Inc., all rights reserved.
  9.  
  10. */
  11.  
  12.  
  13. #ifndef __STORAGECLASSVERSION__
  14. #define __STORAGECLASSVERSION__
  15.  
  16. // All definitions for the version number of the drivers
  17. #define kStorageStringVersShort        "1.0d1"
  18. #define kStorageStringVers1Long        "1.0d1, © 2000 My Comapny"
  19. #define kStorageStringVers2Long        "USB Sample Storage Driver"
  20.  
  21. #define kStorageHexMajorVers        0x01                        // This should never change for the current project.
  22. #define kStorageHexMinorVers        0x01                        // This should never change for the current project.
  23. #define kStorageReleaseStage        developStage                // Be sure to adjust this when the milestone is reached.
  24. #define kStorageCurrentRelease        0x01                        // Be sure to adjust this number every build.
  25.  
  26. #endif
  27.  
  28.